Function: isNativeActiveElement(domElement) Shorthand: isNative(domElement) Description: Checks if an element is a native active element. Returns: True if yes, False otherwise. Note: Native active elements include all of the following: "a" (+ href attribute), "button", "input", "select", "textarea", and "details". Example: // Check if an element is a native active element. var isNative = $A.isNativeActiveElement(domElement);